module ToSBackpacks
{    

	imports
	{
		Base,
	}

    item Small
	{
		WeightReduction	=	80,
		Weight	=	0.2,
		Type	=	Container,
		Capacity	=	50,
		DisplayName	=	ToS Small Bag,
		Icon	=	Small,
        	CanBeEquipped = Back,
        	OpenSound   =   OpenBag,
        	CloseSound   =   CloseBag,
        	PutInSound   =   PutItemInBag,
		ClothingItem = Bag_Schoolbag,
		BloodLocation = Bag,
		RunSpeedModifier = 0.99,
	}

    item Medium
	{
		WeightReduction	=	90,
		Weight	=	0.5,
		Type	=	Container,
		Capacity	=	100,
		DisplayName	=	ToS Medium Bag,
		Icon	=	Medium,
        	CanBeEquipped = Back,
        	OpenSound   =   OpenBag,
        	CloseSound   =   CloseBag,
        	PutInSound   =   PutItemInBag,
		ClothingItem = Bag_BigHikingBag,
		BloodLocation = Bag,
		RunSpeedModifier = 0.99,
	}

    item Big
	{
		WeightReduction	=	95,
		Weight	=	1,
		Type	=	Container,
		Capacity	=	200,
		DisplayName	=	ToS Big Bag,
		Icon	=	Big,
        	CanBeEquipped = Back,
        	OpenSound   =   OpenBag,
        	CloseSound   =   CloseBag,
        	PutInSound   =   PutItemInBag,
		ClothingItem = Bag_ALICEpack,
		BloodLocation = Bag,
		RunSpeedModifier = 0.95,
	}

    item Huge
	{
		WeightReduction	=	99,
		Weight	=	2.0,
		Type	=	Container,
		Capacity	=	400,
		DisplayName	=	ToS Huge Bag,
		Icon	=	Huge,
        	CanBeEquipped = Back,
        	OpenSound   =   OpenBag,
        	CloseSound   =   CloseBag,
        	PutInSound   =   PutItemInBag,
		ClothingItem = Bag_ALICEpack_Army,
		BloodLocation = Bag,
		RunSpeedModifier = 0.90,
	}
}